home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / prtrep51.zip / REPSRC.ZIP / REPDEM06.PAS < prev    next >
Pascal/Delphi Source File  |  1996-06-24  |  554b  |  34 lines

  1. unit Repdem06;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls, PrMemo;
  7.  
  8. type
  9.   Tdem06Form = class(TForm)
  10.     View: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     Memo1: TMemo;
  13.     PrintMemo1: TPrintMemo;
  14.     procedure ViewClick(Sender: TObject);
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. var
  22.   dem06Form: Tdem06Form;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. procedure Tdem06Form.ViewClick(Sender: TObject);
  29. begin
  30.     PrintMemo1.Execute;
  31. end;
  32.  
  33. end.
  34.